ComponentOne Data Source for Entity Framework
C1.LiveLinq.Indexing Namespace / IndexCollection<T> Class / Remove Method / Remove(LambdaExpression) Method
Key selector expression of an index, see IndexDefinition<T>.KeySelector.

In This Topic
    Remove(LambdaExpression) Method
    In This Topic
    Removes an index from the collection.
    Syntax
    'Declaration
     
    
    Public Overloads Overrides Function Remove( _
       ByVal keySelector As System.Linq.Expressions.LambdaExpression _
    ) As System.Boolean
    public override System.bool Remove( 
       System.Linq.Expressions.LambdaExpression keySelector
    )

    Parameters

    keySelector
    Key selector expression of an index, see IndexDefinition<T>.KeySelector.

    Return Value

    true if an index has been removed; false if there is no index with the given key selector in the collection.
    See Also